org.eclipse.vtp.framework.interactions.core.conversation
Interface IInputRequest

All Superinterfaces:
IInteraction

public interface IInputRequest
extends IInteraction

A request that collects a data value from the other end of the conversation.

Author:
Lonnie Pryor

Method Summary
 void setParameterValue(java.lang.String parameterName, java.lang.String parameterValue)
          Sets the value of a parameter configured on this interaction.
 void setParameterValues(java.lang.String parameterName, java.lang.String[] parameterValues)
          Sets all the values configured for the specified parameter on this interaction.
 
Methods inherited from interface org.eclipse.vtp.framework.interactions.core.conversation.IInteraction
enqueue, process
 

Method Detail

setParameterValue

void setParameterValue(java.lang.String parameterName,
                       java.lang.String parameterValue)
Sets the value of a parameter configured on this interaction.

Parameters:
parameterName - The name of the parameter to set the value of.
parameterValue - The value to set the parameter to.

setParameterValues

void setParameterValues(java.lang.String parameterName,
                        java.lang.String[] parameterValues)
Sets all the values configured for the specified parameter on this interaction.

Parameters:
parameterName - The name of the parameter to set the values of.
parameterValues - The values to set the parameter to.